home *** CD-ROM | disk | FTP | other *** search
/ Team Palmtops 7 / Palmtops_numero07.iso / WinCE / SDKWindowsCE / HandHeldPCPro30 / sdk.exe / Jupiter SDK / data1.cab / Emulation_Include_Files / spseal.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-02-19  |  914 b   |  38 lines

  1. /*++
  2.  
  3. Copyright (c) 1992-1998 Microsoft Corporation
  4.  
  5. Module Name: spseal.h
  6.  
  7. Purpose: Prototypes for security provider encryption routines.
  8.  
  9. --*/
  10.  
  11. #ifndef _SPSEAL_
  12. #define _SPSEAL_
  13.  
  14. SECURITY_STATUS SEC_ENTRY
  15. SealMessage(    PCtxtHandle         phContext,
  16.                 unsigned long       fQOP,
  17.                 PSecBufferDesc      pMessage,
  18.                 unsigned long       MessageSeqNo);
  19.  
  20. typedef SECURITY_STATUS
  21. (SEC_ENTRY * SEAL_MESSAGE_FN)(
  22.     PCtxtHandle, unsigned long, PSecBufferDesc, unsigned long);
  23.  
  24.  
  25. SECURITY_STATUS SEC_ENTRY
  26. UnsealMessage(  PCtxtHandle         phContext,
  27.                 PSecBufferDesc      pMessage,
  28.                 unsigned long       MessageSeqNo,
  29.                 unsigned long *     pfQOP);
  30.  
  31.  
  32. typedef SECURITY_STATUS
  33. (SEC_ENTRY * UNSEAL_MESSAGE_FN)(
  34.     PCtxtHandle, PSecBufferDesc, unsigned long,
  35.     unsigned long *);
  36.  
  37. #endif // _SPSEAL_
  38.